From dbf1521ad4cd25ff7eaa66647fa4e6ab792259be Mon Sep 17 00:00:00 2001 From: =?utf8?q?Juan=20R=2E=20Garc=C3=ADa=20Blanco?= Date: Wed, 5 Feb 2014 22:10:05 +0100 Subject: [PATCH] GtkFlowBox::child-activated: fix param type in g_signal_connect Replace GTK_TYPE_WIDGET with more specific GTK_TYPE_FLOW_BOX_CHILD for GtkFlowBox::child-activated. This matches signature of child_activated slot in class struct. https://bugzilla.gnome.org/show_bug.cgi?id=723716 --- gtk/gtkflowbox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkflowbox.c b/gtk/gtkflowbox.c index 6c99fb36fb..cfaa1c998e 100644 --- a/gtk/gtkflowbox.c +++ b/gtk/gtkflowbox.c @@ -3766,7 +3766,7 @@ gtk_flow_box_class_init (GtkFlowBoxClass *class) NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, - GTK_TYPE_WIDGET); + GTK_TYPE_FLOW_BOX_CHILD); /** * GtkFlowBox::selected-children-changed: -- 2.30.2